home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ IE Zone Names.xpl
< prev
next >
Wrap
Text File
|
2001-02-05
|
1KB
|
44 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="5"
"UIPATH"="Internet\Internet Explorer\Zones"
"NAME"="Zone Names"
"LANGUAGE"="VBScript"
"VERSION"="1.34"
"TEXT 1"="Zone #1 Name"
"TEXT 2"="Zone #2 Name"
"TEXT 3"="Zone #3 Name"
"TEXT 4"="Zone #4 Name"
"TEXT 5"="Zone #5 Name"
"DESCRIPTION 1"="IE 4.0 and above divide the internet into different Zones. You can change the names for these zones here."
"DESCRIPTION 2"="To view these items, start Internet Explorer, select "Options" from the "View" menu and click on the "Security" tab."
"DESCRIPTION 3"="You can create your own zone by editing entry #5."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sPath="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\"
sValue="\DisplayName"
Sub Plugin_Initialize
if RegPathExists(sPath) then
for l=1 to 5
s=RegReadValue(sPath & l & sValue)
Call SetUIElement(l,s)
next
else
Disable
end if
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
for l=1 to 5
s=GetUIElement(l)
Call RegWriteValue(sPath & l & sValue,s,1)
next
End Sub
Sub Plugin_Terminate
End Sub